From: Felix Fietkau Date: Sun, 14 Jun 2015 17:41:21 +0000 (+0000) Subject: firmware-tools/ptgen: use stdint types for struct pte X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=9cd8125fb1256b9e6509317bde11472ae7449239;p=project%2Ffirmware-utils.git firmware-tools/ptgen: use stdint types for struct pte Signed-off-by: Felix Fietkau SVN-Revision: 45957 --- diff --git a/src/ptgen.c b/src/ptgen.c index 68bad6f..2b7ec25 100644 --- a/src/ptgen.c +++ b/src/ptgen.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include @@ -39,13 +40,13 @@ #endif /* Partition table entry */ -struct pte { - unsigned char active; - unsigned char chs_start[3]; - unsigned char type; - unsigned char chs_end[3]; - unsigned int start; - unsigned int length; +struct pte { + uint8_t active; + uint8_t chs_start[3]; + uint8_t type; + uint8_t chs_end[3]; + uint32_t start; + uint32_t length; }; struct partinfo {